home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 74.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  538b  |  28 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     int    i;
  11.     static    struct    info{
  12.         char    *name;
  13.         int    employnum;
  14.     } people[] = {
  15.         "John", 111,
  16.         "Johna", 222,
  17.         "Johnx", 333,
  18.         "Johnny", 444,
  19.         "", 0
  20.     };
  21.  
  22.     for(i=0; people[i].name[0] != '\0'; i++) {
  23.         printf("Name: %s\n", people[i].name);
  24.         printf("Employee Number: %d\n", people[i].empnum);
  25.     }
  26.  
  27. }
  28.